home *** CD-ROM | disk | FTP | other *** search
/ Scene 96 / Scene 96 International Edition (Zyklop Software) (Disc 2) (1997).iso / misc / coding / midas060 / src / mglobals.inc < prev    next >
Encoding:
Text File  |  1997-01-16  |  1.4 KB  |  41 lines

  1. ;*    MGLOBALS.INC
  2. ;*
  3. ;* MIDAS Sound System global variables
  4. ;*
  5. ;* $Id: mglobals.inc,v 1.4 1997/01/16 18:41:59 pekangas Exp $
  6. ;*
  7. ;* Copyright 1996,1997 Housemarque Inc.
  8. ;*
  9. ;* This file is part of the MIDAS Sound System, and may only be
  10. ;* used, modified and distributed under the terms of the MIDAS
  11. ;* Sound System license, LICENSE.TXT. By continuing to use,
  12. ;* modify or distribute this file you indicate that you have
  13. ;* read the license and understand and accept it fully.
  14. ;*
  15.  
  16.  
  17. GLOBAL  LANG mUseEMS : _int             ; 1 if EMS should be used
  18. GLOBAL  LANG mEnableSurround : _int     ; 1 if surround sound is enabled
  19. GLOBAL  LANG mBufferLength : _int       ; buffer length in milliseconds
  20. GLOBAL  LANG mBufferBlocks : _int       ; number of buffer blocks
  21.                                         ; (not applicable to all SDs)
  22. GLOBAL  LANG mDefaultFramerate : _int   ; default framerate (in 100*Hz), used
  23.                                         ; when screen sync is not available
  24. GLOBAL  LANG mSyncScreen : _int         ; 1 if timer can be synchronized to
  25.                                         ; screen
  26.  
  27.  
  28.  
  29. ;* $Log: mglobals.inc,v $
  30. ;* Revision 1.4  1997/01/16 18:41:59  pekangas
  31. ;* Changed copyright messages to Housemarque
  32. ;*
  33. ;* Revision 1.3  1996/05/31 21:40:50  pekangas
  34. ;* Added mSyncScreen and mDefaultFramerate
  35. ;*
  36. ;* Revision 1.2  1996/05/30 22:38:46  pekangas
  37. ;* no changes?
  38. ;*
  39. ;* Revision 1.1  1996/05/22 20:49:33  pekangas
  40. ;* Initial revision
  41. ;*